home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / sunaudio.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  50 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''Interpret sun audio headers.'''
  5. MAGIC = '.snd'
  6.  
  7. class error(Exception):
  8.     pass
  9.  
  10.  
  11. def get_long_be(s):
  12.     '''Convert a 4-char value to integer.'''
  13.     return ord(s[0]) << 24 | ord(s[1]) << 16 | ord(s[2]) << 8 | ord(s[3])
  14.  
  15.  
  16. def gethdr(fp):
  17.     '''Read a sound header from an open file.'''
  18.     if fp.read(4) != MAGIC:
  19.         raise error, 'gethdr: bad magic word'
  20.     
  21.     hdr_size = get_long_be(fp.read(4))
  22.     data_size = get_long_be(fp.read(4))
  23.     encoding = get_long_be(fp.read(4))
  24.     sample_rate = get_long_be(fp.read(4))
  25.     channels = get_long_be(fp.read(4))
  26.     excess = hdr_size - 24
  27.     if excess < 0:
  28.         raise error, 'gethdr: bad hdr_size'
  29.     
  30.     if excess > 0:
  31.         info = fp.read(excess)
  32.     else:
  33.         info = ''
  34.     return (data_size, encoding, sample_rate, channels, info)
  35.  
  36.  
  37. def printhdr(file):
  38.     '''Read and print the sound header of a named file.'''
  39.     hdr = gethdr(open(file, 'r'))
  40.     (data_size, encoding, sample_rate, channels, info) = hdr
  41.     while info[-1:] == '\x00':
  42.         info = info[:-1]
  43.     print 'File name:  ', file
  44.     print 'Data size:  ', data_size
  45.     print 'Encoding:   ', encoding
  46.     print 'Sample rate:', sample_rate
  47.     print 'Channels:   ', channels
  48.     print 'Info:       ', repr(info)
  49.  
  50.